home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-03-08 | 641 b | 27 lines | [TEXT/dIsR] |
- -- This script should make your modem's TR light flash-- if your modem has
- -- one, is wired correctly, and is NOT set to pull DTR high all the time.
- -- I'm not sure if it will work on a Mac older than a plus. If it does
- -- (or does not) send email to newton@cs.utexas.edu and tell me!
-
- script dtrtest
-
- state one
- display "starting-- watch the appropriate light on your modem,\r";
- display " if you have one (and the right cable)!\r";
- set dtr off;
- delay 1;
- set dtr on;
- delay 1;
- set dtr off;
- delay 1;
- set dtr on;
- delay 1;
- set dtr off;
- delay 1;
- set dtr on;
- display "done";
- stop;
- end;
-
- end;
-